home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual Foxpro 6.0 (Ent. Edition) / Vf6ent Extractor.EXE / TOOLS / XSOURCE / XSOURCE.ZIP / vfpsource / Builders / wb.h < prev    next >
Encoding:
Text File  |  1998-05-01  |  5.0 KB  |  110 lines

  1. * Filename:        WB.H
  2. * Description:    Header file for WB.PRG.
  3. * -----------------------------------------------------------------------------------------
  4.  
  5. * Localizable directives (roughly alphabetical)
  6.  
  7. #DEFINE C_BADWIZPLATFORM_LOC    "Wizards will run only under the Windows version of Visual FoxPro 5.0 or higher."
  8. #DEFINE C_BADBDRPLATFORM_LOC    "Builders will run only under the Windows version of Visual FoxPro 5.0 or higher."
  9. #DEFINE C_BADREGOPEN_LOC        "Error opening the registration table: "
  10. #DEFINE C_BADREGTABLE_LOC        " has an incorrect structure. Would you like to recreate the registration table?"
  11. #DEFINE C_BADWIZVERSION_LOC        "Wizards will run only in Visual FoxPro 5.0 or higher."
  12. #DEFINE C_BADBDRVERSION_LOC        "Builders will run only in Visual FoxPro 5.0 or higher."
  13. #DEFINE C_FINDWIZREG_LOC        "The Wizard registration table is missing."
  14. #DEFINE C_FINDBDRREG_LOC        "The Builder registration table is missing."
  15. #DEFINE C_LOCORMAKE_LOC            "Do you want to locate it, or create a new one?"
  16. #DEFINE C_LOCATE_LOC            "Locate "
  17. #DEFINE C_MAKEREGERROR_LOC        "An error occurred when creating the registration table. Try again?"
  18. #DEFINE C_MSG1_LOC                "Line: "
  19. #DEFINE C_NOWIZARDS_LOC            "No wizards were found. Would you like to create a new registration table?"
  20. #DEFINE C_NOBUILDERS_LOC        "No builders were found. Would you like to create a new registration table?"
  21. #DEFINE C_NOWIZNAME_LOC            "The specified wizard was not found."
  22. #DEFINE C_NOBDRNAME_LOC            "The specified builder was not found."
  23. #DEFINE C_NOWIZLIB_LOC            "There are no registered wizards of this type."
  24. #DEFINE C_NOBDRLIB_LOC            "There are no registered builders of this type."
  25. #DEFINE C_NOWIZREG_LOC            "There are no registered wizards of this type."
  26. #DEFINE C_NOBDRREG_LOC            "There are no registered builders of this type."
  27. #DEFINE C_NOLIB2_LOC            "Please locate the class library which contains this definition."
  28. #DEFINE C_NOWIZDESC_LOC            "There is no description for this wizard."
  29. #DEFINE C_NOBDRDESC_LOC            "There is no description for this builder."
  30. #DEFINE C_PRG_LOC                "Program:    "
  31. #DEFINE C_RSCERROR_LOC            "Error opening resource file:"
  32. #DEFINE C_RUNTIMEWIZ_LOC        "Wizards will run only under the development version"
  33. #DEFINE C_RUNTIMEBDR_LOC        "Builders will run only under the development version"
  34. #DEFINE C_SELDIR_LOC            "Select directory:"
  35. #DEFINE C_STATMSGWIZ_LOC        "Microsoft Visual FoxPro Wizards"
  36. #DEFINE C_STATMSGBDR_LOC        "Microsoft Visual FoxPro Builders"
  37. #DEFINE C_UNSUPPORTED_LOC        "Your control is set to a property that the builder does not support: "
  38. #DEFINE C_PICKWIZ_LOC            "Select the wizard you would like to use:"
  39. #DEFINE C_PICKBDR_LOC            "Select the builder you would like to use:"
  40. #DEFINE C_BADOPEN_LOC            "is in use or is read-only."
  41. #DEFINE C_REGTBLSTRING_LOC        "Registration Table"
  42. #DEFINE C_WIZSELECT_LOC            "Wizard Selection"
  43. #DEFINE C_BDRSELECT_LOC            "Builder Selection"
  44.  
  45. #DEFINE MB_MSGBOXWIZTITLE_LOC    "FoxPro Wizards"
  46. #DEFINE MB_MSGBOXBDRTITLE_LOC    "FoxPro Builders"
  47. #DEFINE C_ERRGENERIC_LOC        "An error has occurred in: "
  48.  
  49.  
  50. * Other directives
  51.  
  52. #DEFINE C_DEBUG                    .t.
  53. #DEFINE N_MINFOXVERSION            5                            && Minimum Foxversion
  54. #DEFINE C_FOXVERSION            "FOXPRO 06.00"                && FoxPro version
  55. #DEFINE C_DIRWIZ                "WIZARDS\"
  56. #DEFINE C_DIRBDR                "WIZARDS\"                    && may be BUILDER\ later
  57. #DEFINE C_LIBWIZ                "WIZARD.VCX"                && default wizard class library
  58. #DEFINE C_LIBBDR                "BUILDER.VCX"                && default wizard class library
  59. #DEFINE C_MODIFY                "MODIFY"                    && modify option keyword
  60. #DEFINE C_NOSCRN                "NOSCRN"                    && no screens option keyword
  61. #DEFINE C_REGDBFWIZ                "WIZARD.DBF"                && names for default tables
  62. #DEFINE C_REGFPTWIZ                "WIZARD.FPT"
  63. #DEFINE C_REGDBFBDR                "BUILDER.DBF"
  64. #DEFINE C_REGFPTBDR                "BUILDER.FPT"
  65. #DEFINE C_TPLDBFWIZ                "WREGTBL"                    && template reg tables, burned into app
  66. #DEFINE C_TPLDBFBDR                "BREGTBL"
  67. #DEFINE C_WINLIBRARY            "FT3.DLL"                    && latest version of foxtools.fll
  68. #DEFINE C_ALL                    "ALL"
  69. #DEFINE C_WIZAPP                "WIZARD.APP"
  70. #DEFINE C_BDRAPP                "BUILDER.APP"
  71.  
  72. #DEFINE MB_OK                    0                            && MessageBox codes
  73. #DEFINE MB_OKCANCEL                1
  74. #DEFINE MB_ABORTRETRYIGNORE     2
  75. #DEFINE MB_YESNOCANCEL            3
  76. #DEFINE MB_YESNO                4
  77. #DEFINE MB_RETRYCANCEL            5
  78. #DEFINE MB_TYPEMASK                5
  79.  
  80. #DEFINE MB_ICONHAND                16
  81. #DEFINE MB_ICONQUESTION            32
  82. #DEFINE MB_ICONEXCLAMATION      48
  83. #DEFINE MB_ICONASTERISK         64
  84. #DEFINE MB_ICONMASK                240
  85.  
  86. #DEFINE MB_ICONINFORMATION      64
  87. #DEFINE MB_ICONSTOP             16
  88.  
  89. #DEFINE MB_DEFBUTTON1            0
  90. #DEFINE MB_DEFBUTTON2            256
  91. #DEFINE MB_DEFBUTTON3            512
  92. #DEFINE MB_DEFMASK                3840
  93.  
  94. #DEFINE MB_APPLMODAL            0
  95. #DEFINE MB_SYSTEMMODAL            4096
  96. #DEFINE MB_TASKMODAL            8192
  97.  
  98. #DEFINE MB_NOFOCUS                32768
  99.  
  100. #DEFINE MB_RET_OK                1                            && MessageBox return values
  101. #DEFINE MB_RET_CANCEL            2
  102. #DEFINE MB_RET_ABORT            3
  103. #DEFINE MB_RET_RETRY            4
  104. #DEFINE MB_RET_IGNORE            5
  105. #DEFINE MB_RET_YES                6
  106. #DEFINE MB_RET_NO                7
  107.  
  108. * -----------------------------------------------------------------------------------------
  109. * EOF() - WB.H
  110.